home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / staticdemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  209 b   |  17 lines

  1. program StaticDemo;
  2.  
  3. procedure Foo;
  4. { x keeps its value between two calls to this procedure }
  5. var
  6.   x : static Integer = 0;
  7. begin
  8.   WriteLn (x);
  9.   Inc (x)
  10. end;
  11.  
  12. begin
  13.   Foo;
  14.   Foo;
  15.   Foo;
  16. end.
  17.